projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aa82f4f
)
(tex-generate-zap-file-name): Don't start the name with #.
author
Karl Heuer
<kwzh@gnu.org>
Thu, 10 Dec 1998 03:17:51 +0000
(
03:17
+0000)
committer
Karl Heuer
<kwzh@gnu.org>
Thu, 10 Dec 1998 03:17:51 +0000
(
03:17
+0000)
lisp/textmodes/tex-mode.el
patch
|
blob
|
history
diff --git
a/lisp/textmodes/tex-mode.el
b/lisp/textmodes/tex-mode.el
index 92ddade1985caa87e6f1a9217925b73c384846aa..e4ee3049d830bcd700e212284864a751aab15e13 100644
(file)
--- a/
lisp/textmodes/tex-mode.el
+++ b/
lisp/textmodes/tex-mode.el
@@
-1318,7
+1318,9
@@
This function is more useful than \\[tex-buffer] when you need the
"Generate a unique name suitable for use as a file name."
;; Include the shell process number and host name
;; in case there are multiple shells (for same or different user).
- (format "#tz%d%s"
+ ;; Dec 1998: There is a report that some versions of xdvi
+ ;; don't work with file names that start with #.
+ (format "-tz#%d%s"
(process-id (get-buffer-process "*tex-shell*"))
(tex-strip-dots (system-name))))